home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / comm / bbs / multadvn.lha / Multi.Doc < prev    next >
Encoding:
Text File  |  1991-06-14  |  4.3 KB  |  129 lines

  1.  
  2.                          +----------------------------+
  3.                          |  The Multi-Adventure Door  |
  4.                          |             by             |
  5.                          |       Mark D. Turner       |
  6.                          +----------------------------+
  7.  
  8.  
  9.  
  10.           =-=-=-=-=-=-=-=-=   GENERAL INFORMATION  =-=-=-=-=-=-=-=-=
  11.  
  12. This door will allow you to create your own simple adventures by just
  13. creating a text file.  There are several files which you need to change
  14. or create:
  15.  
  16.         MENU.DAT   This is the menu of available games.
  17.                    When you create an adventure, add the
  18.                    title onto this file.  There can be
  19.                    up to 40 games.
  20.  
  21.         GAME.X     This is the file of questions, answers,
  22.                    and responses that makeup the game.
  23.                    GAME.1 would be the game file for the
  24.                    first entry in MENU.DAT.  GAME.2 would
  25.                    be for the second...
  26.  
  27.         INTRO.X    This is an opening screen for the game.
  28.                    INTRO.1 would be displayed before GAME.1
  29.                    was played.  Not a required file.
  30.  
  31.         WINNER.X   This is an end-of-the-game message.
  32.                    This is only shown to someone who has
  33.                    won the adventure.  WINNER.1 would be
  34.                    displayed at the completion of GAME.1.
  35.                    Not a required file.
  36.  
  37.  
  38.  
  39.           =-=-=-=-=-=-=-=  HOW TO CREATE A GAME FILE  =-=-=-=-=-=-=-=
  40.  
  41. The file starts with the first question.  The line must start with "\Q\".
  42. The question can be several lines long.  Each of them do NOT start with
  43. "\Q\"!  Blank lines are acceptable.
  44.  
  45. The question is followed by the possible answers.  Each answer must
  46. starts with "\A\".  Each answer can be several lines long and each of
  47. them do NOT start with "\A\".
  48.  
  49. The answers are then followed by the responses which the computer will
  50. give.  Each response must start with one of the following:
  51.  
  52.     "\Y\"  which means the person can continue on with the game.
  53.     "\N\"  which means the game is over.
  54.     "\W\"  which means the person won the game.
  55.  
  56. Each response can be several lines long but only the first should
  57. start with "\Y\" or "\N\" or "\W\".
  58.  
  59. Example:
  60.  
  61.  
  62. \Q\Who is Paul McCartney?
  63. \A\He was one of the Beatles.
  64. \A\He played bagpipes for Lawrence Welk.
  65. \A\I'm not sure.
  66. \W\Yes!  Paul was one of the Beatles.
  67. You win the game!
  68. \N\No!  If you don't know that then there's
  69. no use in playing this game.
  70. \Y\Well, we'll let you try another question then.
  71.  
  72.  
  73. The player would be asked:
  74.  
  75. Who is Paul McCartney?
  76.  
  77. 1. He was one of the Beatles.
  78. 2. He played bagpipes for Lawrence Welk.
  79. 3. I'm not sure.
  80.  
  81.  
  82. If they picked "1", they would win the game.
  83. If they picked "2", the game would be over.
  84. If they picked "3", they would get another question.
  85.  
  86. A question can have up to 9 different answers.  There can be as many
  87. "\Y\" or "\N\" or "\W\" as you like.  The last question MUST have a
  88. "\W\" or the game will crash!
  89.  
  90. Blank lines will be ignored.  Place a "space" on lines that you want
  91. to display as blank.
  92.  
  93. A file can have up to 100 questions.
  94.  
  95.  
  96.                     =-=-=-=-=-=-=-=  FUTURE  =-=-=-=-=-=-=-=
  97.  
  98. Look for more adventure files in the future.  If you create any,
  99. please upload them to my board and I'll upload them to Percy's bbs
  100. when I have several.  Or, you can upload them straight to Percy's
  101. bbs, if you prefer.
  102.  
  103.  
  104. Calls and comments are greatly appreciated.  My bbs is:
  105.  
  106.                              +--------------------+
  107.                              |  The Outer Limits  |
  108.                              |   (304) 327-7452   |
  109.                              |  Monday -- Friday  |
  110.                              |  8:00am - 7:00 pm  |
  111.                              |  300 -- 2400 baud  |
  112.                              +--------------------+
  113.  
  114.  
  115. Any contributions may be sent to my new address:
  116.  
  117.                                    Mark Turner
  118.                                   P.O. Box 1955
  119.                              Bluefield, WV 24701-6955
  120.  
  121. This program is copyrighted 1990 by Mark D. Turner.  It may be
  122. freely distributed and changed as you see fit.  Please give me
  123. credit for the original version, though.  I am not responsible
  124. for any problems which may arise from the use of this program.
  125.  
  126.                   =-=-=-=-=-=-=-=  REVISIONS  =-=-=-=-=-=-=-=
  127.  
  128. v1.01  Fixed error handling.
  129.